home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Development Tools & Languages / Dylan Related / Mindy / Mindy 1.2 - Mac PPC / demos / Makefile.in < prev   
Encoding:
Makefile  |  1995-03-15  |  1.5 KB  |  46 lines  |  [TEXT/MMCC]

  1. ######################################################################
  2. ##
  3. ## Copyright (c) 1994  Carnegie Mellon University
  4. ## All rights reserved.
  5. ## 
  6. ## Use and copying of this software and preparation of derivative
  7. ## works based on this software are permitted, including commercial
  8. ## use, provided that the following conditions are observed:
  9. ## 
  10. ## 1. This copyright notice must be retained in full on any copies
  11. ##    and on appropriate parts of any derivative works.
  12. ## 2. Documentation (paper or online) accompanying any system that
  13. ##    incorporates this software, or any part of it, must acknowledge
  14. ##    the contribution of the Gwydion Project at Carnegie Mellon
  15. ##    University.
  16. ## 
  17. ## This software is made available "as is".  Neither the authors nor
  18. ## Carnegie Mellon University make any warranty about the software,
  19. ## its performance, or its conformity to any specification.
  20. ## 
  21. ## Bug reports, questions, comments, and suggestions should be sent by
  22. ## E-mail to the Internet address "gwydion-bugs@cs.cmu.edu".
  23. ##
  24. ######################################################################
  25. ##
  26. ##  $Header: Makefile.in,v 1.2 94/10/07 18:43:30 nkramer Exp $
  27. ##
  28.  
  29. SHELL    =    /bin/sh
  30.  
  31. SUBDIRS    =    hello-world cat html2txt
  32.  
  33. all:
  34.     for dir in ${SUBDIRS}; do (cd $$dir; ${MAKE}); done
  35.  
  36. clean:
  37.     rm -f *~ \#* core
  38.     for dir in ${SUBDIRS}; do (cd $$dir; ${MAKE} clean); done
  39.  
  40. realclean:
  41.     rm -f Makefile *~ \#* core
  42.     for dir in ${SUBDIRS}; do (cd $$dir; ${MAKE} realclean); done
  43.  
  44. install:
  45.     for dir in ${SUBDIRS}; do (cd $$dir; ${MAKE} install); done
  46.